webweb!

a tool for creating, displaying, and sharing interactive network visualizations on the web designed for simplicity and ease of use.



features

  • simple and configurable model
  • easy to share (one file, no dependencies)
  • easy to embed
  • does what you need it to (multiple networks, layered networks)
  • interfaces for multiple languages (python, MATLAB) and libraries (networkx)

How do I run it?

showing:

from webweb import Web

# make a list of unweighted edges
edge_list = [[1, 2], [2, 3], [3, 4]]

# instantiate webweb and show the result
Web(edge_list).show()
% make a list of unweighted edges
edge_list = [...
    1, 2;
    2, 3;
    3, 4;
    ];
webweb(edge_list);

How do I install it?

showing:

pip install webweb
git clone https://github.com/dblarremore/webweb